home *** CD-ROM | disk | FTP | other *** search
/ TPUG - Toronto PET Users Group / TPUG Users Group CD / TPUG Users Group CD.iso / PET / S-Super PET / (s)t5.d64 / EDA.BOXPLOT.INF < prev    next >
Text File  |  2009-01-18  |  2KB  |  54 lines

  1.                       box plot displays
  2.                       `````````````````
  3.  
  4.  introduction         box plots provide a simple means of displaying data
  5.                       by enclosing data values which fall within the upper
  6.                       and lower quartiles in a box, and representing data
  7.                       values which fall outside this range by characters
  8.                       which indicate the extent. example >_
  9.  
  10.                                      M@@@@@@@@@M
  11.                         OO  =________M   `     M_________= O
  12.                       2              MFFFFFFFFFM           4
  13.  
  14.                      where >_ `   represents the median of the data set
  15.                               M   marks the ends of the box representing
  16.                                   the upper and lower quartiles
  17.                               =   marks the upper and lower eighths
  18.                               O   represents data values falling outside
  19.                                   the eighths
  20.                                   represents data values a long way outside
  21.                       the numbers simply give a count of values lying in
  22.                       outlier positions that are too close to separate
  23.  
  24.  
  25.  command syntax       boxplot dddd      _ produces a box plot display of
  26.                                           data stored in dddd
  27.                       boxplot ddddP0.5  _produces a box plot display of
  28.                                          the square roots of data in dddd
  29.                       boxplot dddd;<3'  _produces a box plot of the
  30.                                          data stored in column 3 of the
  31.                                          array dddd.
  32.  
  33.   PP nb PP it is assumed that dddd is a data set in the workspace
  34.  
  35.  comments            Jboxplot accepts numeric vectors or arrays as its
  36.                       right argument
  37.  
  38.  parameters          Jthe user may alter the length of the display by
  39.                       changing the default value the variable KlengthK
  40.  
  41.  errors               see comments in this section of stemleafFinfo
  42.  
  43.  
  44.                       PPPP  practice PPPPK
  45.  
  46.  this work space contains the data set called insects :p 12, mcneil"
  47.  
  48.      try entering the following commands>_
  49.  
  50.    insects                       _display data in insects
  51.    boxplot insectsK
  52.    boxplot insectsP0.5           _square roots of data
  53.    boxplot insects;<3 4 5'       _use cols 3,4 and 5 of insects
  54.